home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / rexx / 2080 < prev    next >
Encoding:
Internet Message Format  |  1996-08-06  |  2.2 KB

  1. Path: news.compuserve.com!newsmaster
  2. From: 76505,125@compuserve.com
  3. Newsgroups: comp.lang.rexx
  4. Subject: Re: OS/2 REXX SysCreateObject() WinCreateObject setup string tips?
  5. Date: 21 Apr 1996 07:26:21 GMT
  6. Organization: CompuServe Incorporated
  7. Distribution: inet
  8. Message-ID: <4lcnut$63j@dub-news-svc-2.compuserve.com>
  9. References: <abeDq2KtH.5DG@netcom.com>
  10. Reply-To: 76505,125@compuserve.com
  11. NNTP-Posting-Host: ad20-019.compuserve.com
  12. X-Newsreader: IBM NewsReader/2 v1.2.5
  13.  
  14. In <abeDq2KtH.5DG@netcom.com>, abe@netcom.com (Dave Abercrombie) writes:
  15. >I have not yet found any documentation on what seems like
  16. >a simple task: I would like to create a folder with the
  17. >icon view set to "flowed". I can create the folder just
  18. >fine with code like this:
  19. >
  20. >rc = SysCreateObject(  'WPFolder' ,,
  21. >                       folderName   ,,
  22. >                       basePath     ,,
  23. >                       'OBJECTID=' || folderID ,,
  24. >                       'R' )
  25. >If rc = 0 Then Do
  26. >   Say "Could not create folder" folderName 'in' basePath
  27. >   Exit 4
  28. >   End
  29. >
  30. >I suspect that I could specify flowed icon view
  31. >in my WinCreateObject setup string argument, but
  32. >no amount of trial and error has worked yet, and
  33. >I sure can not fond documentation on this.
  34. >
  35. >Perhaps I could use SysSetObjectData(), but I am 
  36. >still left with the problem of no documentation
  37. >for the WinCreateObject setup string argument.
  38. >
  39. >Please help!
  40. >
  41. >-- 
  42. >Dave Abercrombie          (510) 653-1204            122.15.13 W 
  43. >abe@netcom.com                                       37.50.58 N
  44.  
  45. Your suspicions are correct.  Here's the REXX/2 statement:
  46. classname = 'WPProgram'
  47. title = 'Your Title'
  48. location = '<DESKTOP>'
  49. setup = 'OBJECTID = <' || objectid || '>;' || 'ICONVIEW = FLOWED;' 
  50. rc = SysCreateObject( classname,title,location,setup, 'U' )
  51.  
  52. One favor in return?  If you ever do find the complete scource for these
  53. setup strings, please let me know at 76505.125@compuserve.com
  54.  
  55. _+_+_+_+_+_+_+_+_+_+_+_+_+_+_+_+_+_+_+_+_+_
  56. "The bitterness of poor quality lingers long after
  57. the sweetness of low price has been forgotten.
  58.                                 danny rubis
  59.                                 Certified OS/2 Engineer
  60. LooK Incorporated
  61. 76505.125@compuserve.com
  62.  
  63.